home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FM Towns: Free Software Collection 6
/
FM Towns Free Software Collection 6.iso
/
t_os
/
qa
/
src
/
platform.h
< prev
next >
Wrap
Text File
|
1993-07-08
|
1KB
|
57 lines
/*
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ 初期設定用ヘッダファイル ///// Tab Size : 4 ///// ┃
┃ ┃
┃ Platform.h v2.0 L10 ┃
┃ ┃
┃ (C)K.Konishi 16-Oct-92 ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
*/
#if !defined(___Platform)
#define ___Platform
#define ___PlatformDate 16-Oct-92
#define ___PlatformVer v1.0_L10
/* TRUE か FALSE のみを返す型 */
typedef unsigned char Boolean; /* 信樂 推奨型 */
typedef unsigned char Bool;
typedef int BOOL;
typedef unsigned char BYTE;
#if !defined(TRUE)
#define TRUE 1
#endif
#if !defined(FALSE)
#define FALSE 0
#endif
#if !defined(square)
#define square(x) ((x) * (x))
#endif
#if !defined(qube)
#define qube(x) ((x) * (x) * (x))
#endif
#if !defined(maxof)
#define maxof(a,b) ((a) > (b) ? (a) : (b))
#endif
#if !defined(minof)
#define minof(a,b) ((a) < (b) ? (a) : (b))
#endif
#endif